home *** CD-ROM | disk | FTP | other *** search
/ .net (Turkey) 1998 March / .net Internet Dergisi - CD 5.iso / mac / CON_BM / 00286_Script_286 < prev    next >
Text File  |  1997-11-07  |  643b  |  28 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6. on ResetFrames
  7.   --  put stuff in here to do before moving to a different set of frames
  8.   EndAnyRollovers()
  9.   updatestage
  10. end ResetFrame  
  11.  
  12.  
  13. on NoSuchProgram
  14.   global gPlatform 
  15.   
  16.   if gPlatform = "Macintosh,68k" then 
  17.     set Computer to "the 68k Macintosh"
  18.   else if gPlatform = "Macintosh,PowerPC" then 
  19.     set Computer to "the Macintosh Power PC"
  20.   else if gPlatform = "Windows,16" then 
  21.     set Computer to "Windows 3.1 or earlier"
  22.   else if gPlatform = "Windows,32" then 
  23.     set Computer to "Windows 95 or NT"
  24.   end if
  25.   
  26.   alert "This application is not available for " & Computer
  27.   
  28. end NoSuchProgram